Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
{
"root": "/Users/mikebarnett/Workspace/script-commands",
"generated_at": "2025-12-11T19:27:49Z",
"files": [
{"path": "Fetch File By Path.sh", "ext": ".sh", "lang": "shell", "size_bytes": 548, "modified": "2025-12-11T19:18:28Z", "preview": "#!/usr/bin/env bash\n# Required parameters:\n# @raycast.schemaVersion 1\n# @raycast.title Fetch File By Path\n# @raycast.mode fullOutput\n# @raycast.packageName Workspace\n#\n# Optional parameters:\n# @raycast.icon \ud83d\udcc4\n# @raycast.argument1 { \"type\": \"text\", \"placeholder\": \"Relative path (e.g., extensions/foo/command.js)\" }\n# @raycast.argument2 { \"type\": \"text\", \"placeholder\": \"Root (Enter for default)\", \"optional\": true }\n\nset -euo pipefail\nREL=\"${1:?relative path required}\"\nROOT=\"${2:-/Users/mikebarnett/Workspace/script-commands}\"\ncat \"$ROOT/$REL\"\n"}
@ongkiii
ongkiii / IPA-Sources.md
Last active December 11, 2025 19:41
REPOS/TELEGRAM CHANNELS LIST BY u/angkitbharadwaj
@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active December 11, 2025 19:41
Conventional Commits Cheatsheet
{
"name": "Smart Receipt Organizer",
"nodes": [
{
"parameters": {
"updates": [
"message",
"channel_post"
],
"additionalFields": {}
@chipotle
chipotle / copy-as-rich-text.el
Last active December 11, 2025 19:40
Emacs copy as formatted text
;; This can be added to your init.el file or included as a require. It requires
;; Pandoc to be installed and available on your $PATH (and for Emacs to be able
;; to see your path!). This only works on MacOS, although it could be adapted
;; for Linux with replacements for pbcopy and textutil (if necessary).
;; get region or beginning of buffer
(defun wm/begin ()
(if (region-active-p)
(region-beginning)
(point-min)))
@spvkgn
spvkgn / capture_tls_quic.py
Last active December 11, 2025 19:40
Capture TLS ClientHello / QUIC Initial
#!/usr/bin/env python3
"""
capture_tls_quic.py — Capture TLS ClientHello and QUIC Initial
-t : capture TLS ClientHello (default)
-q : capture QUIC Initial
-a : capture both (TLS + QUIC)
"""
from __future__ import annotations
@intellectronica
intellectronica / 0.README.md
Last active December 11, 2025 19:34
Filez - Ad-Hoc File Sharing Using GitHub Pages

GitHub Pages File-Sharing

If you sometimes find yourself needing to share a file over HTTP, there are not many file-sharing solutions you can use.

This action works by publishing files via GitHub Pages behind an obscure prefix path. It updates the repository README with the URLs, so that you have links to the published files.

You can keep the repository secret, and the files are public but semi-secret, so you can share them without concern that other files will be discovered.

@Sinnnnak
Sinnnnak / uninstall_from_terminal.md
Created December 3, 2024 17:04
Uninstall modules from terminal

To uninstall modules from an Odoo database using the terminal, you can use the Odoo shell or execute SQL commands directly. Here's how to do it:


Method 1: Using Odoo Shell

  1. Launch the Odoo shell:
    ./odoo-bin shell -d <your_database_name>
@Chizaruu
Chizaruu / generate-types.ts
Last active December 11, 2025 19:30
Parses SQL migrations directly. Handles JSONB defaults, SQL comments → JSDoc, and geometric types (Point/Polygon as structured types, not unknown). Auto-detects Prettier. Works offline. npm install -D type-fest npx tsx generate-types.ts
#!/usr/bin/env tsx
/* eslint-disable @typescript-eslint/no-unused-vars */
/* eslint-disable no-console */
/* eslint-disable camelcase */
/**
* Complete Supabase Type Generator - Schema-File First with Index Support
*
* This script:
* 1. Reads SQL schema files from your Supabase directory (default for --local)